Rename time to time_ to avoid a scanner warning
authorJohan Dahlin <johan@gnome.org>
Tue, 8 Feb 2011 15:29:57 +0000 (13:29 -0200)
committerJohan Dahlin <johan@gnome.org>
Tue, 8 Feb 2011 15:29:57 +0000 (13:29 -0200)
gtk/gtkdnd.c

index 825008cdd0f46dff6e296c161eec396fa9d2878d..8c074c9d8da5f22313c566ba1a7b637232648872 100644 (file)
@@ -964,15 +964,15 @@ gtk_drag_update_cursor (GtkDragSourceInfo *info)
  * @widget: a #GtkWidget
  * @context: drag context
  * @target: format to retrieve the data in.
- * @time: timestamp of triggering event.
+ * @time_: timestamp of triggering event.
  *
  * Get the data for a drag or drop
  */
-void 
+void
 gtk_drag_get_data (GtkWidget      *widget,
                   GdkDragContext *context,
                   GdkAtom         target,
-                  guint32         time)
+                  guint32         time_)
 {
   GtkWidget *selection_widget;
 
@@ -983,7 +983,7 @@ gtk_drag_get_data (GtkWidget      *widget,
 
   g_object_ref (context);
   g_object_ref (widget);
-  
+
   g_signal_connect (selection_widget, "selection-received",
                    G_CALLBACK (gtk_drag_selection_received), widget);
 
@@ -992,7 +992,7 @@ gtk_drag_get_data (GtkWidget      *widget,
   gtk_selection_convert (selection_widget,
                         gdk_drag_get_selection (context),
                         target,
-                        time);
+                        time_);
 }